home *** CD-ROM | disk | FTP | other *** search
/ Point Programming 1 / PPROG1.ISO / pascal / swag / printing.swg / 0043_Get PRINTER Status.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1995-02-28  |  224 b   |  12 lines

  1. function GetPrinterStatus (LPT: Word): Byte;
  2. {Pass 1 in LPT to see if the printer is hooked up.} 
  3. begin
  4.   asm
  5.     mov ah,2
  6.     mov dx,LPT
  7.     dec dx
  8.     int $17
  9.     mov @Result,ah
  10.   end;
  11. end;  {GetPrinterStatus}
  12.